home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-12-05 | 1.9 KB | 65 lines |
- #+---------------------------------------------------------------------------
- #
- # Microsoft Windows
- # Copyright (C) Microsoft Corporation, 1994-1995.
- #
- # File: makefile
- #
- #----------------------------------------------------------------------------
- TARGETOS=BOTH
- APPVER=4.0
-
- !include <win32.mak>
-
- MFLAGS = /ms_ext /c_ext
-
- all: asyncstg.dll astgps.dll
-
- clean:
- del *.obj
- del *.lib
- del *.exp
- del *.dll
- del *_i.c
- del *_p.c
- del bytearr.h
- del asyncstg.h
-
-
- bytearr.h: bytearr.idl
- midl $(MFLAGS) $**
-
- asyncstg.h asyncstg_i.c asyncstg_p.c:asyncstg.idl
- midl $(MFLAGS) $**
-
- asyncstg_i.obj: asyncstg_i.c asyncstg.h
- $(cc) $(cvars) $(cflags) -D"REGISTER_PROXY_DLL" $(cdebug) asyncstg_i.c
-
- dlldata.obj: dlldata.c
- $(cc) $(cvars) $(cflags) -D"REGISTER_PROXY_DLL" $(cdebug) dlldata.c
-
- guids.obj: guids.cpp
- $(cc) $(cvars) $(cflags) $(cdebug) guids.cpp
-
- astg_ca.obj: astg_ca.c
- $(cc) $(cvars) $(cflags) -D"REGISTER_PROXY_DLL" $(cdebug) astg_ca.c
-
- asyncstg_p.obj: asyncstg_p.c asyncstg.h
- $(cc) $(cvars) $(cflags) -D"REGISTER_PROXY_DLL" $(cdebug) asyncstg_p.c
-
- connect.obj: connect.cpp connect.h
- $(cc) $(cvars) $(cflags) $(cdebug) connect.cpp
-
- bytearr.obj: bytearr.cpp bytearr.h asyncstg.h
- $(cc) $(cvars) -c -W3 -DCRTAPI1=_cdecl -DCRTAPI2=_cdecl -nologo \
- -D_X86_=1 -DWINVER=0x0400 -GX $(cdebug) bytearr.cpp
-
- barrfact.obj: barrfact.cpp barrfact.h bytearr.h asyncstg.h
- $(cc) $(cvars) $(cflags) $(cdebug) barrfact.cpp
-
- asyncstg.dll: bytearr.obj guids.obj asyncstg_i.obj connect.obj astgps.lib barrfact.obj
- $(link) $(dlllflags) $** -out:asyncstg.dll -def:asyncstg.def $(olelibsdll) olepro32.lib rpcrt4.lib
-
- astgps.dll astgps.lib: dlldata.obj asyncstg_p.obj asyncstg_i.obj astg_ca.obj
- $(link) $(dlllflags) $** -out:astgps.dll -def:astgps.def $(olelibsdll) olepro32.lib rpcrt4.lib
-